fix(container): update rook-ceph group ( v1.18.8 ➔ v1.18.9 )#3879
Merged
binaryn3xus merged 1 commit intomainfrom Jan 15, 2026
Merged
fix(container): update rook-ceph group ( v1.18.8 ➔ v1.18.9 )#3879binaryn3xus merged 1 commit intomainfrom
binaryn3xus merged 1 commit intomainfrom
Conversation
Contributor
Author
--- kubernetes/apps/rook-ceph/rook-ceph/app Kustomization: rook-ceph/rook-ceph OCIRepository: rook-ceph/rook-ceph
+++ kubernetes/apps/rook-ceph/rook-ceph/app Kustomization: rook-ceph/rook-ceph OCIRepository: rook-ceph/rook-ceph
@@ -11,9 +11,9 @@
spec:
interval: 5m
layerSelector:
mediaType: application/vnd.cncf.helm.chart.content.v1.tar+gzip
operation: copy
ref:
- tag: v1.18.8
+ tag: v1.18.9
url: oci://ghcr.io/rook/rook-ceph
--- kubernetes/apps/rook-ceph/rook-ceph/cluster Kustomization: rook-ceph/rook-ceph-cluster OCIRepository: rook-ceph/rook-ceph-cluster
+++ kubernetes/apps/rook-ceph/rook-ceph/cluster Kustomization: rook-ceph/rook-ceph-cluster OCIRepository: rook-ceph/rook-ceph-cluster
@@ -11,9 +11,9 @@
spec:
interval: 5m
layerSelector:
mediaType: application/vnd.cncf.helm.chart.content.v1.tar+gzip
operation: copy
ref:
- tag: v1.18.8
+ tag: v1.18.9
url: oci://ghcr.io/rook/rook-ceph-cluster
|
Contributor
Author
--- HelmRelease: rook-ceph/rook-ceph-cluster Deployment: rook-ceph/rook-ceph-tools
+++ HelmRelease: rook-ceph/rook-ceph-cluster Deployment: rook-ceph/rook-ceph-tools
@@ -27,12 +27,13 @@
- |
# Replicate the script from toolbox.sh inline so the ceph image
# can be run directly, instead of requiring the rook toolbox
CEPH_CONFIG="/etc/ceph/ceph.conf"
MON_CONFIG="/etc/rook/mon-endpoints"
KEYRING_FILE="/etc/ceph/keyring"
+ CONFIG_OVERRIDE="/etc/rook-config-override/config"
# create a ceph config file in its default location so ceph/rados tools can be used
# without specifying any arguments
write_endpoints() {
endpoints=$(cat ${MON_CONFIG})
@@ -47,12 +48,19 @@
[global]
mon_host = ${mon_endpoints}
[client.admin]
keyring = ${KEYRING_FILE}
EOF
+
+ # Merge the config override if it exists and is not empty
+ if [ -f "${CONFIG_OVERRIDE}" ] && [ -s "${CONFIG_OVERRIDE}" ]; then
+ echo "$DATE merging config override from ${CONFIG_OVERRIDE}"
+ echo "" >> ${CEPH_CONFIG}
+ cat ${CONFIG_OVERRIDE} >> ${CEPH_CONFIG}
+ fi
}
# watch the endpoints config file and update if the mon endpoints ever change
watch_endpoints() {
# get the timestamp for the target of the soft link
real_path=$(realpath ${MON_CONFIG})
@@ -112,12 +120,15 @@
- mountPath: /etc/ceph
name: ceph-config
- name: mon-endpoint-volume
mountPath: /etc/rook
- name: ceph-admin-secret
mountPath: /var/lib/rook-ceph-mon
+ - name: rook-config-override
+ mountPath: /etc/rook-config-override
+ readOnly: true
serviceAccountName: rook-ceph-default
volumes:
- name: ceph-admin-secret
secret:
secretName: rook-ceph-mon
optional: false
@@ -127,12 +138,16 @@
- name: mon-endpoint-volume
configMap:
name: rook-ceph-mon-endpoints
items:
- key: data
path: mon-endpoints
+ - name: rook-config-override
+ configMap:
+ name: rook-config-override
+ optional: true
- name: ceph-config
emptyDir: {}
tolerations:
- key: node.kubernetes.io/unreachable
operator: Exists
effect: NoExecute
--- HelmRelease: rook-ceph/rook-ceph Role: rook-ceph/rook-ceph-mgr
+++ HelmRelease: rook-ceph/rook-ceph Role: rook-ceph/rook-ceph-mgr
@@ -39,12 +39,13 @@
- delete
- apiGroups:
- ceph.rook.io
resources:
- cephclients
- cephclusters
+ - cephclusters/finalizers
- cephblockpools
- cephfilesystems
- cephnfses
- cephobjectstores
- cephobjectstoreusers
- cephobjectrealms
--- HelmRelease: rook-ceph/rook-ceph Deployment: rook-ceph/rook-ceph-operator
+++ HelmRelease: rook-ceph/rook-ceph Deployment: rook-ceph/rook-ceph-operator
@@ -28,13 +28,13 @@
- effect: NoExecute
key: node.kubernetes.io/unreachable
operator: Exists
tolerationSeconds: 5
containers:
- name: rook-ceph-operator
- image: ghcr.io/rook/ceph:v1.18.8
+ image: ghcr.io/rook/ceph:v1.18.9
imagePullPolicy: IfNotPresent
args:
- ceph
- operator
securityContext:
capabilities: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.18.8→v1.18.9v1.18.8→v1.18.9Release Notes
rook/rook (ghcr.io/rook/rook-ceph)
v1.18.9Compare Source
Improvements
Rook v1.18.9 is a patch release limited in scope and focusing on feature additions and bug fixes to the Ceph operator.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Renovate Bot.